home *** CD-ROM | disk | FTP | other *** search
/ Super PC 34 / Super PC 34 (Shareware).iso / spc / UTIL / DJGPP2 / V2 / DJLSR200.ZIP / src / libc / ansi / stdlib / abort.c next >
Encoding:
C/C++ Source or Header  |  1995-04-13  |  243 b   |  14 lines

  1. /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
  2. #include <stdlib.h>
  3. #include <unistd.h>
  4. #include <io.h>
  5.  
  6. static char msg[] = "Abort!\r\n";
  7.  
  8. void
  9. abort()
  10. {
  11.   _write(STDERR_FILENO, msg, sizeof(msg)-1);
  12.   _exit(1);
  13. }
  14.